home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / dllistb.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  4KB  |  98 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: dllistb.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer
  8. // File Creation Date: 12/29/1996
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. Base classes for doubly linked list implementations. The
  32. DNodeBase class and the DLListBase class separates the nodes
  33. from the data stored in the list by storing pointer to the
  34. data. Classes derived from these base classes can deal with
  35. any type of node data.
  36. */
  37. // ----------------------------------------------------------- //   
  38. #ifndef __DLLISTB_HPP
  39. #define __DLLISTB_HPP
  40.  
  41. // (D)oubly Linked List (N)ode (B)ase class 
  42. class DNodeBase
  43. {
  44. protected:
  45.   friend class DLListBase;
  46.  
  47. protected:
  48.   void InsertAfter(DNodeBase *Node);
  49.   void InsertBefore(DNodeBase *Node);
  50.   DNodeBase *Rmv();
  51.   void SelfRef() { Prior = this; Next = this; }
  52.  
  53. protected:
  54.   DNodeBase *Prior;
  55.   DNodeBase *Next;
  56. };
  57.  
  58. // (D)oubly (L)inked (L)ist (B)ase class  
  59. class DLListBase : public DNodeBase
  60. {
  61. protected:
  62.   DLListBase() { MakeEmpty(); }
  63.   virtual ~DLListBase(); 
  64.  
  65. public:
  66.   virtual void Clear();
  67.   int IsEmpty() const { return (const DNodeBase *)Next == this; }
  68.   int IsHeader(const DNodeBase *Node) const { return Node == this; }
  69.   
  70. protected:
  71.   virtual DNodeBase *DupNode(const DNodeBase *Node) = 0;
  72.   virtual void FreeNode(DNodeBase *Node) = 0;
  73.   virtual void MakeEmpty(); 
  74.   DNodeBase *GetHeader() { return this; }
  75.   const DNodeBase *GetHeader() const { return this; }
  76.   DNodeBase *GetFront() { return Next; }
  77.   const DNodeBase *GetFront() const { return Next; }
  78.   DNodeBase *GetBack() { return Prior; }
  79.   const DNodeBase *GetBack() const { return Prior; }
  80.   void InsertBefore(DNodeBase *A, DNodeBase *B) {
  81.     A->InsertBefore(B); }
  82.   void InsertAfter(DNodeBase *A, DNodeBase *B) {
  83.     A->InsertAfter(B); }
  84.   void AttachToFront(DNodeBase *Node) { InsertAfter(this, Node); }
  85.   void AttachToBack(DNodeBase *Node) { InsertAfter(Prior, Node); }
  86.   DNodeBase *Rmv(DNodeBase *Node);
  87.   DNodeBase *RmvFront() { return Rmv(Next); }
  88.   DNodeBase *RmvBack() { return Rmv(Prior); }
  89.   int Copy(const DLListBase &List);
  90.   int Cat(const DLListBase &List);
  91. };
  92.  
  93. #endif  // __DLLISTB_HPP //
  94. // ----------------------------------------------------------- // 
  95. // ------------------------------- //
  96. // --------- End of File --------- //
  97. // ------------------------------- //
  98.